home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
PROGRAMMING
/
LCLINT-D.SPK
/
lclint
/
guide
/
mstring.c
< prev
next >
Wrap
Text File
|
1996-08-26
|
220b
|
12 lines
typedef /*@abstract@*/ /*@null@*/ char *mstring;
static /*@notnull@*/ mstring mstring_createNew (int x) ;
mstring mstring_space (void)
{
mstring m = mstring_createNew (1);
*m = ' '; *(m + 1) = '\0';
return m;
}